home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 July: Mac OS SDK / Dev.CD Jul 99 SDK1.toast / Development Kits / Mac OS / AIAT / Headers / Analysis / OneByteAnalysis.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-04-16  |  655 b   |  39 lines  |  [TEXT/CWIE]

  1. /*
  2.     File:        OneByteAnalysis.h
  3.     Copyright:    © 1994 - 1998 by Apple Computer, Inc., all rights reserved.
  4. */
  5.  
  6. #pragma once
  7. #ifndef OneByteAnalysis_h
  8. #define OneByteAnalysis_h
  9.  
  10. #pragma import on
  11.  
  12. #if PRAGMA_STRUCT_ALIGN
  13.     #pragma options align=power
  14. #endif
  15.  
  16. #include "IAAnalysis.h"
  17.  
  18. #pragma IA_BEGIN_EXPORTS
  19.  
  20. const uint32        OneByteAnalysisType = '1Bt1';
  21.  
  22. class OneByteAnalysis : public IAAnalysis {
  23. public:
  24.                     OneByteAnalysis() : IAAnalysis(OneByteAnalysisType) {}
  25.  
  26.     IATokenStream*    MakeTokenStream(IADocText* text);
  27.     IATerm*            GetProtoTerm();
  28. };
  29.  
  30. #pragma IA_END_EXPORTS
  31.  
  32. #if PRAGMA_STRUCT_ALIGN
  33.     #pragma options align=reset
  34. #endif
  35.  
  36. #pragma import reset
  37.  
  38. #endif
  39.